runtime.memRecord.active (field)

18 uses

	runtime (current package)
		mprof.go#L105: 	active memRecordCycle
		mprof.go#L314: 		mp.active.add(mpc)
		mprof.go#L334: 		mp.active.add(mpc)
		mprof.go#L578: 		if inuseZero || mp.active.alloc_bytes != mp.active.free_bytes {
		mprof.go#L581: 		if mp.active.allocs != 0 || mp.active.frees != 0 {
		mprof.go#L594: 				mp.active.add(&mp.future[c])
		mprof.go#L597: 			if inuseZero || mp.active.alloc_bytes != mp.active.free_bytes {
		mprof.go#L607: 			if inuseZero || mp.active.alloc_bytes != mp.active.free_bytes {
		mprof.go#L620: 	r.AllocBytes = int64(mp.active.alloc_bytes)
		mprof.go#L621: 	r.FreeBytes = int64(mp.active.free_bytes)
		mprof.go#L622: 	r.AllocObjects = int64(mp.active.allocs)
		mprof.go#L623: 	r.FreeObjects = int64(mp.active.frees)
		mprof.go#L643: 		fn(b, b.nstk, &b.stk()[0], b.size, mp.active.allocs, mp.active.frees)